This object represents a document stored in the vault.
Name | Description |
---|---|
Reserved. See About reserved objects, methods, and properties . |
|
Reserved. See About reserved objects, methods, and properties . |
|
Reserved. See About reserved objects, methods, and properties . |
|
Reserved. See About reserved objects, methods, and properties . |
|
True if it is possible to delete the document. |
|
Reserved. See About reserved objects, methods, and properties . |
|
Reserved. See About reserved objects, methods, and properties . |
|
Creates a copy of the document (will not cause events to occur). |
|
The date/time the document was created. |
|
The name of the person who created the document. |
|
Removes the reference to another document (using the ID of the reference). |
|
The file name of the document. |
|
A reference to the document type object (AMDocumentType object). |
|
The display name of the document type. |
|
The internal name of the document type. |
|
Reserved. See About reserved objects, methods, and properties . |
|
Reserved. See About reserved objects, methods, and properties . |
|
Windows-defined file type. |
|
Reserved. See About reserved objects, methods, and properties . |
|
Unique ID of the document object. |
|
Path the document was imported from. |
|
A collection of all references to this document. |
|
A collection of all documents that reference this document. |
|
False. |
|
Reserved. See About reserved objects, methods, and properties . |
|
Reserved. See About reserved objects, methods, and properties . |
|
See About accessing object properties on how to query property values. |
|
The date the document content was last changed. |
|
The user who last edited the document. |
|
Moves the document to another folder (does not cause any events to occur). |
|
The internal name of the document. |
|
The path where the document can be found in a Navigation view. |
|
Creates a reference to another document. |
|
A collection of all references to other documents. |
|
A collection of all documents referenced by this document. |
|
Reference to the parent folder object (AMFolder object). See Remarks. |
|
The path relative to the root of the vault. |
|
Reserved. See About reserved objects, methods, and properties . |
|
Reserved. See About reserved objects, methods, and properties . |
|
Reserved. See About reserved objects, methods, and properties . |
|
Reference to the current transaction (AMDocumentRepository object). |
|
See About accessing object properties on how to edit property values. |
|
Reserved. See About reserved objects, methods, and properties . |
|
The file size. |
|
Reserved. See About reserved objects, methods, and properties . |
|
Date/time the thumbnail was last updated. |
|
Reserved. See About reserved objects, methods, and properties . |
Name | Description |
---|---|
Changes the document type of the document (does not cause any events to occur) |
|
Reserved. See About reserved objects, methods, and properties . |
|
Creates a new document and sets the document state to retired (does not cause any events to occur) |
|
Creates a new derived document (does not cause any events to occur) |
|
True if the current user can edit the document content, taking privileges and state into account |
|
True if the current user can view the document content, taking privileges and state into account |
|
True if the current user can edit the document redlines, taking privileges and state into account |
|
True if the current user can view the document redlines, taking privileges and state into account |
Name | Description |
---|---|
Reserved. See About reserved objects, methods, and properties . |
Name | Description |
---|---|
Reserved. See About reserved objects, methods, and properties . |
|
Reserved. See About reserved objects, methods, and properties . |
Name | Description |
---|---|
Reserved. See About reserved objects, methods, and properties . |
|
Reserved. See About reserved objects, methods, and properties . |
|
Reserved. See About reserved objects, methods, and properties . |
Name | Description |
---|---|
Reserved. See About reserved objects, methods, and properties . |
|
Reserved. See About reserved objects, methods, and properties . |
Name | Description |
---|---|
Reserved. See About reserved objects, methods, and properties . |
Name | Description |
---|---|
Global ID of the document |
|
Generates new unique global ID |
Name | Description |
---|---|
Resets property _FTUPDATED |
Other Interfaces
IAMHybridDocument interface
IAMDocumentConfigurableWorkflow interface
Remarks
The ParentFolder property should not be used from the BeforeWizard event. Use GetParentFolder method instead.
Any action invoked on the AMDocument object directly will not cause any client-side customization to occur. UIExtensions, VBScript events, and wizards will not be applied. If customization is required, use functionality provided by the AMEdmUI client-side library.
The server can be forced to update the HasRedline property by calling the HasRedlineData property as demonstrated in the following code sample.
Dim Doc as IAMDocument8
Set Doc = SelectedDocument
If Doc.HasRedlineData(True) Then
' Has Redline property has been updated by server
End If